Catch trial performance

## [1] "Excluded 11 participants based on catch-trial performance."

Exclusion of random guesses

We further exclude participants who seem to provide random ratings independent of the scene that they are seeing. We quantify this by computing the mean rating for each utterance across all trials for each participant and computing the correlation between a participant’s actual ratings and their mean rating. A high correlation is unexpected and indicates that a participant chose ratings at random. We therefore also exclude the data from participants for whom this correlation is larger than 0.75.

## Warning in cor(rating_m, rating_m_overall): the standard deviation is zero
## [1] "Excluded 1 participants based on random responses."

Aggregated results

Individual responses

AUC computation

Method 1

We use the AUC function with the splines method to directly compute the AUC.

t-test and regression model with control variables:

## 
##  Two Sample t-test
## 
## data:  aucs.cautious$auc_diff and aucs.confident$auc_diff
## t = 8.0098, df = 89, p-value = 4.147e-12
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  19.83182 32.91710
## sample estimates:
## mean of x mean of y 
## 23.779423 -2.595039
## 
## Cohen's d
## 
## d estimate: 1.68186 (large)
## 95 percent confidence interval:
##    lower    upper 
## 1.196649 2.167070
## 
## Call:
## lm(formula = auc_diff ~ cond + test_order + confident_speaker, 
##     data = rbind(aucs.cautious, aucs.confident))
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -36.236  -9.628   1.177   9.130  32.007 
## 
## Coefficients:
##                              Estimate Std. Error t value Pr(>|t|)    
## (Intercept)                    22.324      3.223   6.927 7.05e-10 ***
## condconfident (might-biased)  -26.467      3.299  -8.023 4.45e-12 ***
## test_orderreverse               4.282      3.302   1.297    0.198    
## confident_speakerconfidentm    -1.316      3.304  -0.398    0.691    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 15.7 on 87 degrees of freedom
## Multiple R-squared:  0.4305, Adjusted R-squared:  0.4109 
## F-statistic: 21.92 on 3 and 87 DF,  p-value: 1.156e-10